home *** CD-ROM | disk | FTP | other *** search
/ Windows Expert / Windows Expert.iso / windownt / dyndlg.zip / MAKEFILE < prev   
Text File  |  1992-11-02  |  414b  |  19 lines

  1. # Nmake macros for building Windows 32-Bit apps
  2.  
  3. !include <ntwin32.mak>
  4.  
  5. all: base.exe
  6.  
  7.  
  8. # Update the object file if necessary
  9.  
  10. base.obj: base.c
  11.     $(cc) $(cdebug) $(cflags) $(cvars) base.c
  12.  
  13.  
  14. # Update the executable file if necessary, and if so, add the resource back in.
  15.  
  16. base.exe: base.obj
  17.     $(cvtobj) $(cvtdebug) *.obj
  18.     $(link) $(linkdebug) $(guiflags) -out:base.exe base.obj $(guilibs)
  19.